home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 7 / 007.d81 / q & a < prev    next >
Text File  |  2022-08-26  |  2KB  |  119 lines

  1.         QUESTIONS & ANSWERS
  2.         {CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}{CBM-T}
  3.  
  4. Cook 71118
  5.  
  6.  
  7.    What does the 'LEN' function do and
  8.  
  9. how can you use it?
  10.  
  11.                    -- Cook 71118
  12.  
  13.  
  14. >The LEN function returns the length
  15.  of a string.  The syntax is:
  16.  
  17.            LEN(string)
  18.  
  19.  Because LEN IS a FUNCTION, you must
  20.  DO something with LEN.  You can NOT
  21.  just say:
  22.  
  23.         10 A$ = "HELLO THERE"
  24.         20 LEN(A$)
  25.         30 END
  26.  
  27.   You must perform some type of oper-
  28.   ation with LEN.  For instance:
  29.  
  30.  
  31.         10 A$ = "HELLO THERE"
  32.         20 PRINT A$
  33.         30 PRINT LEN(A$)
  34.         40 END
  35.  
  36.  
  37.   The output will look like this:
  38.  
  39. HELLO THERE
  40.  11
  41.  
  42.  
  43.  
  44. Hope this has cleared up any questions
  45. you may have had concerning LEN.
  46.  
  47.  
  48. --------------------------------------
  49.  
  50. Oneill 10940
  51.  
  52.  
  53.   One question!  How often is it
  54.  
  55. necessary to clean your 1541?  Does
  56.  
  57. anyone know for sure?
  58.  
  59.  
  60.                      -- Oneill 10940
  61.  
  62.  
  63. > If your drive is used daily and/or
  64.   very heavily, we suggest at least
  65.   once a week.  If disk use is light,
  66.   monthly may be enough.
  67.  
  68.   ALWAYS!!!! clean your disk at the
  69.   first sign of trouble!!
  70.  
  71.   Remember, one bad disk can 'gum-up'
  72.   your drive REAL good.  Also,
  73.   remember:
  74.  
  75.      GARBAGE IN,     -- bad disk
  76.      GARBAGE OUT!!   -- MORE bad disks
  77.  
  78.  
  79. --------------------------------------
  80.  
  81.  
  82. Castelli 17201
  83.                  60 Laurel Avenue
  84.                  Chambersburg,Pa 17201
  85.                  October 13,1984
  86.  
  87.  
  88.      I was wondering if you could
  89.  
  90. explain the letters on the biorhythm
  91.  
  92. reader.  My printer wrote me a copy
  93.  
  94. but I really didn't understand it.
  95.  
  96.                  Sincerly,
  97.                  Mary Beth Castelli
  98.  
  99.  
  100. >The printer has told you how you
  101.  are supposed to be feeling according
  102.  to Biorhythm theory.
  103.  
  104.  
  105.  The 'P' represents your Physical
  106.   cycle.
  107.  The 'E' represents your Emotional
  108.   cycle.
  109.  The 'I' represents your Intellectual
  110.   cycle.
  111.  
  112.   All of these cycles fluctuate
  113.  along the axis of the days printed.
  114.  They tell you when you should be
  115.  feeling good or bad, physically,
  116.  emotionally, and intellectually.
  117.  
  118. ---------- End of Article ------------
  119.